Remove helpUlr() call from string.
authorCamila Ayres <hello@camilasan.com>
Tue, 25 Feb 2025 09:11:29 +0000 (10:11 +0100)
committerbackportbot[bot] <backportbot[bot]@users.noreply.github.com>
Tue, 25 Feb 2025 10:03:54 +0000 (10:03 +0000)
Co-authored-by: Jyrki Gadinger <nilsding@nilsding.org>
Signed-off-by: Camila Ayres <hello@camilasan.com>
src/libsync/theme.cpp

index 258e89a3c31bb2c4086adb5f3f083db736ee54ff..59f1d5ef7b7393bb6d14bc104856ca545d5f772b 100644 (file)
@@ -417,7 +417,7 @@ QString Theme::developerStringInfo() const
     const auto osName = osStringList.at(0);
 
     const auto devString = QString(tr("%1 Desktop Client Version %2 (%3)", "%1 is application name. %2 is the human version string. %3 is the operating system name."))
-    .arg(APPLICATION_NAME, QString::fromLatin1(MIRALL_HUMAN_VERSION_STRING), osName, helpUrl());
+    .arg(APPLICATION_NAME, QString::fromLatin1(MIRALL_HUMAN_VERSION_STRING), osName);
 
     return devString;
 }